home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
univspl
/
form.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-02-02
|
1KB
|
35 lines
//---------------------------------------------------------------------------
#ifndef fft_bcb_guiH
#define fft_bcb_guiH
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
//---------------------------------------------------------------------------
class TMainForm : public TForm
{
__published: // IDE-managed Components
TButton *Compute;
TEdit *FFTSizeEdit;
TEdit *SRateEdit;
TEdit *FreqEdit;
TLabel *Label1;
TLabel *Label2;
TLabel *Label3;
TLabel *Label4;
TLabel *FoundFreqLbl;
TButton *Button1;
TButton *ViewBtn;
void __fastcall ComputeClick(TObject *Sender);
void __fastcall Button1Click(TObject *Sender);
void __fastcall ViewBtnClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TMainForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TMainForm *MainForm;
//---------------------------------------------------------------------------
#endif